home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / vsc92nov.zip / String.h < prev    next >
C/C++ Source or Header  |  1992-11-02  |  435b  |  25 lines

  1. /*
  2.  * String.h -- Declarations for Scheme Strings
  3.  *
  4.  * (C) m.b (Matthias Blume), Mar 1992, HUB/Ger
  5.  *
  6.  * ident "@(#) String.h (C) M.Blume, Humboldt-Uni Berlin, 1.2"
  7.  */
  8.  
  9. # ifndef STRING_H_
  10. # define STRING_H_
  11.  
  12. # include "storage.h"
  13.  
  14. typedef
  15. struct ScmString {
  16.   object_head _;
  17.   unsigned short length;
  18.   char array[1];
  19. } ScmString;
  20.  
  21. extern od_vector ScmString_od_vector;
  22. #define ScmString_description (ScmString_od_vector[0])
  23.  
  24. # endif
  25.